runtime.hmap.nevacuate (field)
18 uses
runtime (current package)
map.go#L128: nevacuate uintptr // progress counter for evacuation (buckets less than this have been evacuated)
map.go#L1029: h.nevacuate = 0
map.go#L1079: h.nevacuate = 0
map.go#L1152: evacuate(t, h, h.nevacuate)
map.go#L1278: if oldbucket == h.nevacuate {
map.go#L1284: h.nevacuate++
map.go#L1287: stop := h.nevacuate + 1024
map.go#L1291: for h.nevacuate != stop && bucketEvacuated(t, h, h.nevacuate) {
map.go#L1292: h.nevacuate++
map.go#L1294: if h.nevacuate == newbit { // newbit == # of oldbuckets
map.go#L1502: dst.nevacuate = 0
map_fast32.go#L370: evacuate_fast32(t, h, h.nevacuate)
map_fast32.go#L459: if oldbucket == h.nevacuate {
map_fast64.go#L372: evacuate_fast64(t, h, h.nevacuate)
map_fast64.go#L467: if oldbucket == h.nevacuate {
map_faststr.go#L398: evacuate_faststr(t, h, h.nevacuate)
map_faststr.go#L482: if oldbucket == h.nevacuate {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |